home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / test / common / y.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-23  |  92 b   |  11 lines

  1.  
  2. int b;
  3. extern int a;
  4. extern int c;
  5.  
  6. yy()
  7. {
  8.     b = 2;
  9.     printf("%d %d %d\n", a, b, c);
  10. }
  11.